(fortran-font-lock-keywords-2): Add keywords for
authorStefan Monnier <monnier@iro.umontreal.ca>
Sun, 18 May 2008 04:16:57 +0000 (04:16 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sun, 18 May 2008 04:16:57 +0000 (04:16 +0000)
logic operators .eqv. and .neqv.

lisp/progmodes/fortran.el

index d326207d73f2ed09973517a07f369399302c9893..0e7fd0ee051546f527ac7ef9127e6a654b462997 100644 (file)
@@ -360,7 +360,7 @@ program\\|subroutine\\)\\>[ \t]*\\(\\sw+\\)?"
            ;; Builtin operators.
            (concat "\\." (regexp-opt
                           '("and" "or" "not" "lt" "le" "eq" "ge"
-                            "gt" "ne" "true" "false")
+                            "gt" "ne" "eqv" "neqv" "true" "false")
                           'paren) "\\.")
            ;; do/goto keywords and targets, and goto tags.
            '("\\<\\(do\\|go *to\\)\\>[ \t]*\\([0-9]+\\)?"